home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-08-02 | 488 b | 18 lines | [TEXT/PJMM] |
- unit GrafSysC;
-
- (* interface to the C/Assembler routines *)
- (* for fast off-screen bitmap access *)
-
- interface
-
- { pascal long FastPixErase ( PixMapHandle pixH, short color) }
- procedure FastPixErase (pixH: PixMapHandle; color: integer);
-
- { pascal void FillTriangle (Point p1, Point p2, Point p3, int theColor, Boolean forceQD); }
- procedure FillTriangle (p1: Point; p2: point; p3: Point; theColor: Integer; useQD: Boolean);
-
- implementation
-
- { all implementation in C/Assembler }
-
- end.